home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Games / NeXTGo / Source / seed.c < prev    next >
C/C++ Source or Header  |  1993-02-08  |  238b  |  15 lines

  1. #include "comment.header"
  2.  
  3. #include <sys/time.h>
  4.  
  5. void seed(int *i)
  6. /* start seed of random number generator for Sun */
  7.   {
  8.    struct timeval tp;
  9.    struct timezone tzp;
  10.  
  11.    gettimeofday(&tp, &tzp);
  12.    *i = tp.tv_usec;
  13. }  /* end seed */
  14.  
  15.